home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / Borland Visual dBASE Professiona v7.0 / DATA1.CAB / Sample_dBASE / Fleet / Aircraft.dmd < prev    next >
Text File  |  1997-11-20  |  843b  |  35 lines

  1. //--------------------------------------------------------------
  2. //
  3. //  Aircraft.dmd -- DataModule with Aircraft table.
  4. //
  5. //  Dependencies: FLEET.CDM
  6. //
  7. //  Visual dBASE Samples Group
  8. //
  9. //  $Revision:   1.0  $
  10. //
  11. //  Copyright (c) 1997, Borland International, Inc. 
  12. //  All rights reserved.
  13. //
  14. //---------------------------------------------------------------
  15. ** END HEADER -- do not remove this line
  16. //
  17. // Generated on 10/09/97
  18. //
  19. class aircraftDataModule of FLEETCDATAMODULE from "Fleet.cdm"
  20.  
  21.  
  22.    this.AIRCRAFT1 = new QUERY()
  23.    this.AIRCRAFT1.parent = this
  24.    with (this.AIRCRAFT1)
  25.       left = 10.1111
  26.       top = 0
  27.       sql = 'SELECT * FROM "aircraft.dbf"'
  28.       session = form.SESSIONFLEET
  29.       database = form.dbfleet
  30.       active = true
  31.    endwith
  32.  
  33.    this.rowset = this.aircraft1.rowset
  34. endclass
  35.